3.1 \(\int \sec (a+b x) \, dx\)

Optimal. Leaf size=11 \[ \frac {\tanh ^{-1}(\sin (a+b x))}{b} \]

[Out]

arctanh(sin(b*x+a))/b

________________________________________________________________________________________

Rubi [A]  time = 0.00, antiderivative size = 11, normalized size of antiderivative = 1.00, number of steps used = 1, number of rules used = 1, integrand size = 6, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.167, Rules used = {3770} \[ \frac {\tanh ^{-1}(\sin (a+b x))}{b} \]

Antiderivative was successfully verified.

[In]

Int[Sec[a + b*x],x]

[Out]

ArcTanh[Sin[a + b*x]]/b

Rule 3770

Int[csc[(c_.) + (d_.)*(x_)], x_Symbol] :> -Simp[ArcTanh[Cos[c + d*x]]/d, x] /; FreeQ[{c, d}, x]

Rubi steps

\begin {align*} \int \sec (a+b x) \, dx &=\frac {\tanh ^{-1}(\sin (a+b x))}{b}\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.00, size = 11, normalized size = 1.00 \[ \frac {\tanh ^{-1}(\sin (a+b x))}{b} \]

Antiderivative was successfully verified.

[In]

Integrate[Sec[a + b*x],x]

[Out]

ArcTanh[Sin[a + b*x]]/b

________________________________________________________________________________________

fricas [B]  time = 0.75, size = 28, normalized size = 2.55 \[ \frac {\log \left (\sin \left (b x + a\right ) + 1\right ) - \log \left (-\sin \left (b x + a\right ) + 1\right )}{2 \, b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(sec(b*x+a),x, algorithm="fricas")

[Out]

1/2*(log(sin(b*x + a) + 1) - log(-sin(b*x + a) + 1))/b

________________________________________________________________________________________

giac [B]  time = 1.91, size = 44, normalized size = 4.00 \[ \frac {\log \left ({\left | \frac {1}{\sin \left (b x + a\right )} + \sin \left (b x + a\right ) + 2 \right |}\right ) - \log \left ({\left | \frac {1}{\sin \left (b x + a\right )} + \sin \left (b x + a\right ) - 2 \right |}\right )}{4 \, b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(sec(b*x+a),x, algorithm="giac")

[Out]

1/4*(log(abs(1/sin(b*x + a) + sin(b*x + a) + 2)) - log(abs(1/sin(b*x + a) + sin(b*x + a) - 2)))/b

________________________________________________________________________________________

maple [A]  time = 0.03, size = 19, normalized size = 1.73 \[ \frac {\ln \left (\sec \left (b x +a \right )+\tan \left (b x +a \right )\right )}{b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(sec(b*x+a),x)

[Out]

1/b*ln(sec(b*x+a)+tan(b*x+a))

________________________________________________________________________________________

maxima [A]  time = 0.41, size = 18, normalized size = 1.64 \[ \frac {\log \left (\sec \left (b x + a\right ) + \tan \left (b x + a\right )\right )}{b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(sec(b*x+a),x, algorithm="maxima")

[Out]

log(sec(b*x + a) + tan(b*x + a))/b

________________________________________________________________________________________

mupad [B]  time = 0.40, size = 11, normalized size = 1.00 \[ \frac {\mathrm {atanh}\left (\sin \left (a+b\,x\right )\right )}{b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(1/cos(a + b*x),x)

[Out]

atanh(sin(a + b*x))/b

________________________________________________________________________________________

sympy [A]  time = 1.93, size = 36, normalized size = 3.27 \[ \begin {cases} \frac {\log {\left (\tan {\left (a + b x \right )} + \sec {\left (a + b x \right )} \right )}}{b} & \text {for}\: b \neq 0 \\\frac {x \left (\tan {\relax (a )} \sec {\relax (a )} + \sec ^{2}{\relax (a )}\right )}{\tan {\relax (a )} + \sec {\relax (a )}} & \text {otherwise} \end {cases} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(sec(b*x+a),x)

[Out]

Piecewise((log(tan(a + b*x) + sec(a + b*x))/b, Ne(b, 0)), (x*(tan(a)*sec(a) + sec(a)**2)/(tan(a) + sec(a)), Tr
ue))

________________________________________________________________________________________